home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo This batch file copies the file vbrun200.dll from this disk
- echo to your c:\windows directory.
- echo To stop batch file, hold the control (Ctrl) key
- echo and press the Break key.
- pause Press a key to continue.
- if not exist c:\windows\win.ini goto error
- copy vbrun200.dll c:\windows
- goto message
- :error
- echo I could not find the Windows directory named c:\windows
- echo You will have to find where this directory is and copy the file
- echo vbrun200.dll to it.
- goto done
- :message
- echo To run program, start Windows. In the Program Manager, select file
- echo run, and then type c:\partner\wp
- echo Then hit enter.
- :done
- pause Press a key to exit.
- cls
-